ds_queue_empty

Returns whether the given queue is empty or not.

语法:

ds_queue_empty(id);


参数 描述
id 要检查的数据结构的id。


返回: 布尔值


描述

With this function you can check the given ds_queue to see if it is empty (returns true) or not (returns false).


例如:

if count == 15 && !ds_queue_empty(command_queue)
   {
   ds_queue_clear(command_queue);
   alarm[0] = room_speed;
   ai_count = 0;
   }

The above code checks a variable to see if it has reached a specific value and if it has it clears the ds_queue indexed in the variable "command_queue", sets an alarm, and resets the variable to 0.


上一页: Queues
下一页: ds_queue_size
© Copyright YoYo Games Ltd. 2018 All Rights Reserved